js wait 1 second

217

js wait 1 second -

function delay(time) {
  return new Promise(resolve => setTimeout(resolve, time));
}

delay(1000).then(() => console.log('ran after 1 second1 passed'));

jquery pause n seconds -

setTimeout(
  function() 
  {
    //do something special
  }, 5000);

javascript wait 10 seconds -

setTimeout(function () {
        // ...
    }, 10000);

// or

.then(() => {
  // ...
  ({ timeout: 10000 });
      });

Comments

Submit
0 Comments